home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / jcool01.zip / RANGE.C < prev    next >
C/C++ Source or Header  |  1992-08-23  |  681b  |  23 lines

  1. //
  2. // Copyright (C) 1991 Texas Instruments Incorporated.
  3. //
  4. // Permission is granted to any individual or institution to use, copy, modify,
  5. // and distribute this software, provided that this complete copyright and
  6. // permission notice is maintained, intact, in all copies and supporting
  7. // documentation.
  8. //
  9. // Texas Instruments Incorporated provides this software "as is" without
  10. // express or implied warranty.
  11. //
  12. //
  13. // Updated: JAM 08/14/92 -- added static data member defs; fixed anach. form()
  14.  
  15. #include <cool/Range.h>
  16.  
  17. template<class Bounds>
  18. void CoolRange<Bounds>::report_set_error () const {
  19.   printf ("CoolRange out of bounds error.");
  20.   abort();
  21. }
  22.  
  23.